# WGS84 转墨卡托(toMercator)
> npm install @turf/projection
Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection 接收 WGS84 坐标系 的 GeoJSON 对象,转换为墨卡托(EPSG:900913,等效 EPSG:3857)坐标投影
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | GeoJSON|Position | WGS-84 坐标系 GeoJSON |
options | Object | 可配置项 |
options 选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
mutate | boolean | false | 是否返回入参的 GeoJSON,为 true 性能能显著提高 |
返回
GeoJSON - 投影后的 GeoJSON
示例
var pt = turf.point([-71, 41]);
var converted = turf.toMercator(pt);
/*
{
type: "FeatureCollection",
geometry: {
type: "Point"
coordinates: [-7903683.846322424, 5012341.663847514]
},
properties: {}
}
*/
基础用法
Copy